home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
archiver
/
lzhsourc.lzh
/
LZH.SRC
/
GOODPUTC.H
< prev
next >
Wrap
Text File
|
1992-07-02
|
128b
|
10 lines
int file_putc(char c, FILE *f)
{
putc(c,f);
if (ferror(f)) return EOF;
return 0;
}
#define putc file_putc